home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WWTCLKit / WWTTSwitchViewIBInspector.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  887 b   |  36 lines

  1. /* SwitchViewInspector.h
  2.  * Written By:  Thomas Burkholder
  3.  *
  4.  * You may freely copy, distribute, and reuse the code in this example.
  5.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  6.  * fitness for any particular use.
  7.  */
  8.  
  9. // name space protected by wave
  10.  
  11. #import <appkit/appkit.h>
  12. #import <apps/InterfaceBuilder.h>
  13. #import "WWTTSwitchView.h"
  14.  
  15. // Category of SwitchView that does the inspector-specific stuff
  16. @interface WWTTSwitchView (AttributesInspector)
  17.  
  18. - (const char *)getInspectorClassName;
  19.  
  20. @end
  21.  
  22. // An IB inspector for SwitchView
  23. @interface WWTTSwitchViewIBInspector:IBInspector
  24. {
  25.     id     messageTypeField;    // field that displays actual callback method
  26.     id     messageHowMatrix;    // automatic/custom choice matrix
  27.     id     initialField;        // field with initial view number
  28. }
  29.  
  30. - init;
  31. - ok:sender;
  32. - revert:sender;
  33. - (BOOL)wantsButtons;
  34.  
  35. @end
  36.